@charset "utf-8";

/*-- 全局reset
-------------------------------------------*/

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
object,
code,
legend,
button,
input,
textarea,
label,
th,
td,
a,
img {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clear {
    clear: both;
}

body {
    font: 16px "Microsoft Yahei", Arial, sans-seri;
    color: #333;
}


/*清除内外边距*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}


/*设置默认字体*/

 :focus {
    outline: 0;
}

ul,
ol {
    list-style: none;
}


/*重置列表*/

fieldset,
img {
    border: 0 none;
    vertical-align: top;
}


/*重置图片元素*/

address,
caption,
cite,
code,
dfn,
em,
i,
th,
var,
optgroup {
    font-style: normal;
    font-weight: normal;
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

code,
kbd,
samp,
tt {
    font-size: 100%;
}


/*@purpose To enable resizing for IE */


/*@branch For IE6-Win, IE7-Win */

input,
button,
textarea,
select {
    *font-size: 100%;
    outline: none;
}


/*
form label {
    cursor: pointer;
}
*/

textarea {
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*重置表格*/

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}

a:hover {
    text-decoration: none;
}

a.special,
.special a {
    color: #1eb37b;
}

a.special:hover,
.special a:hover {
    color: #1eb37b;
    text-decoration: none;
}


/*--清除浮动
-------------------------------------------*/

.cf:before,
.cf:after,
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.cf:after,
.clearfix:after {
    clear: both;
}

.cf,
.clearfix {
    clear: both;
    *zoom: 1;
}


/*-- 字号、颜色、外边距、内补丁、居中、行高、显示、隐藏
--------------------------------------------------------------------------*/

.c-333 {
    color: #333;
}

.c-666 {
    color: #666;
}

.c-999 {
    color: #999;
}

.c-green {
    color: #1fb079;
}

.c-orange {
    color: #fc714c;
}

.c-reg {
    color: #d90106;
}


/* 字号 */

.f9 {
    font-size: 9px;
    -webkit-text-size-adjust: none;
}

.f12,
.fb12 {
    font-size: 12px;
}

.simsun {
    font-family: "Microsoft Yahei", Arial, sans-seri;
}

.f14,
.fb14 {
    font-size: 14px;
}

.f16,
.fb16 {
    font-size: 16px;
}

.f18,
.fb18 {
    font-size: 18px;
}

.f20,
.fb20 {
    font-size: 20px;
}

.fb,
.fb12,
.fb14,
.fb16,
.fb18,
.fb20 {
    font-weight: 700;
}


/* 隐藏 居中 */

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.show {
    display: block;
}

.hide {
    display: none !important;
}


/*文字隐藏,省略号*/

.ti,
.te {
    white-space: nowrap;
    overflow: hidden;
}

.ti {
    text-indent: -999em;
}

.te {
    text-overflow: ellipsis;
}
/*  */
.ov-h{
	overflow: hidden;
	display: block;
}
.shenglue {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
  }
  .shenglue2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
  }
  .shenglue3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
  }
  .shenglue4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
  }
  .shenglue5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
  }
  .shenglue6 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
  }
  .border-r5 {
	border-radius: 5px;
  }
  .img {
	overflow: hidden;
  }
  .pic {
	position: relative;
	overflow: hidden;
  }
  .pic img {
	object-fit: cover;
	width: 100%;
	display: block;
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .pic:hover img {
	-webkit-transform: scale(1.08, 1.08);
	-ms-transform: scale(1.08, 1.08);
	transform: scale(1.08, 1.08);
  }
  .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-timing-function: ease
  }
  .animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
  }
  .animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	animation-timing-function: ease
  }
  @-webkit-keyframes fadeInUp {
	0% {
	  opacity: 0;
	  -webkit-transform: translateY(40px);
	  transform: translateY(40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  transform: translateY(0)
	}
  }
  @keyframes fadeInUp {
	0% {
	  opacity: 0;
	  -webkit-transform: translateY(40px);
	  -ms-transform: translateY(40px);
	  transform: translateY(40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  -ms-transform: translateY(0);
	  transform: translateY(0)
	}
  }
  .fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
  }
  @-webkit-keyframes fadeInLeft {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-40px);
	  transform: translateX(-40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  transform: translateX(0)
	}
  }
  @keyframes fadeInLeft {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-40px);
	  -ms-transform: translateX(-40px);
	  transform: translateX(-40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  transform: translateX(0)
	}
  }
  .fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
  }
  @-webkit-keyframes fadeInRight {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(40px);
	  transform: translateX(40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  transform: translateX(0)
	}
  }
  @keyframes fadeInRight {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(40px);
	  -ms-transform: translateX(40px);
	  transform: translateX(40px)
	}
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  transform: translateX(0)
	}
  }
  .fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
  }


/*自己开始*/

.wrap {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto;
}


/*====================头部开始*********/

.nav_f {
    position: fixed!important;
    top: 0!important;
    z-index: 999;
    width: 100%;
    margin: 0!important;
}


/*logo*/

.h_logo {
    margin-top: 25px;
    width: 60%;
}

.h_logo a img {
    height: 70px;
    display: block;
    float: left;
}

.h_logo .wen {
    padding-left: 25px;
    margin-top: 8px;
    margin-left: 15px;
    border-left: 1px solid #e0e0e0;
}

.h_logo .wen p {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
    padding-bottom: 7px;
    line-height: 30px;
}

.h_logo .wen span {
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
}

.h_logo .wen span font {
    color: #1e2343;
}

.h_toubu {
    position: relative;
    background: #fff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, .09);
}

.h_logo {}


/*导航*/

.sjdianhua {
    display: none;
}

.header .nav {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 100%;
    display: block;
}

.header .navbar_nav li {
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    height: 108px;
    padding: 15px 0;
}

.header .navbar_nav li a {
    text-decoration: none;
    height: 100%;
    padding: 20px 40px;
    display: block;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}

.header .navbar_nav li::after {
    content: '';
    display: block;
    height: 50px;
    border-left: 1px solid #e0e0e0;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
}

.header .navbar_nav li:last-of-type::after {
    border-left: none;
}

.header .navbar_nav li a h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.header .navbar_nav li.active a h3 {
    color: #ff393a;
}

.header .navbar_nav li.active a {
    color: #ff393a;
}


/* 头部 */

header {
    height: 108px;
    display: flex;
    align-items: center;
    background: url(../images/sy_01.jpg) no-repeat top center #fff;
    background-size: contain;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

header .wrap {
    width: 100%;
    max-width: 1900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h_logorights {
    margin-top: 0px;
    display: flex;
}

.hads_dh a {
    padding-left: 0px;
    background: none;
    margin-left: 10px;
}

.hads_dh a:nth-of-type(1) {
    font-size: 20px;
    color: #ff393a;
    font-weight: bold;
}

.hads_dh a:nth-of-type(2) {
    font-size: 18px;
    color: #5b5a58;
}

.h_logo {
    margin-top: 0px;
    width: auto;
}

.h_logo .wen p {
    font-size: 30px;
}

.h_logo .wen span {
    font-size: 14px;
}

.h_logo .wen span font {
    color: #ff393a;
}

.h_logoright {
    width: auto;
}

.hads_dh {
    display: flex;
    align-items: center;
    margin-left: 150px;
}

.hads_dh i {
    font-size: 60px;
    color: #d4d4d4;
}

.h_logoright a {
    background: none;
}

.nav {
    display: flex !important;
}

.nav .nav_title {
    border-right: 1px solid #e3e4e9;
    text-align: center;
    padding: 0px 34px;
    display: inline-block;
}

.nav .nav_title:nth-last-of-type(1) {
    border-right: 0px;
}

.nav .nav_title p {
    font-size: 18px;
    color: #333333;
}

.nav .nav_title span {
    color: #999999;
    font-size: 12px;
}

.nav .nav_title:hover p,
.nav .nav_title:hover span {
    color: #ff393a;
}

.navon p,
.navon span {
    color: #ff393a !important;
}

.md-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 960px;
    min-width: 540px;
}

.md-content video {
    height: 100%;
    width: 100%;
}

.md-content {
    display: flex;
}

.md-close,
.md-content {
    background: none !important;
}

.md-close {
    position: relative;
    width: 32px;
    display: inline-block;
    height: 32px;
    cursor: pointer;
}

.md-close img {
    position: absolute;
    top: 0px;
    left: 0px;
}

@media screen and (max-width:2000px) {
    header .wrap {
        padding: 0px 50px;
    }
}

@media screen and (max-width:1700px) {
    .hads_dh {
        margin-left: 35px;
    }
    .nav .nav_title {
        padding: 0px 25px;
    }
}

@media screen and (max-width:1450px) {
    .hads_dh {
        display: none;
    }
}

@media screen and (max-width:993px) {
    .nav {
        display: none !important;
    }
    header #navToggle {
        margin-top: 0px !important;
        position: fixed !important;
        z-index: 999;
        right: 0px;
        height: auto !important;
    }
    header .wrap {
        padding: 0px 15px;
    }
    header {
        height: 60px;
    }
    .header #navToggle span {
        margin-top: 0px !important;
    }
}

@media screen and (max-width:768px) {}

@media screen and (max-width:540px) {
    .md-modal {
        max-width: 540px;
        min-width: 100%;
    }
    .md-content {
        display: flex;
        flex-direction: column;
    }
    .md-close {
        width: 100%;
    }
    .md-close img {
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media screen and (max-width: 1400px) {
    .header .navbar_nav li a {
        padding: 0 35px;
    }
}

@media screen and (max-width: 1350px) {
    .h_logoright {
        margin-top: 20px;
    }
}

.header .navbar_nav li:last-child a {
    background: none;
}

.header .navbar_nav li.dropdown {
    display: inherit;
    position: relative;
}

.header .navbar_nav li.dropdown .jt {
    width: 20px;
    height: 20px;
    background: url(i/top.png) no-repeat;
    background-size: 100% 100%;
    display: block;
}

.header .navbar_nav li.dropdown .dropdown_menu {
    display: none;
    position: absolute;
    top: 108px;
    background: #fff;
    box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
    width: 120%;
    left: -10%;
    z-index: 9;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
    font-size: 16px;
    color: #333;
    padding: 0 10px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
    display: block;
    background: #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
    color: #333;
    background: none;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
    color: #fff;
    background: #1e2343;
    font-weight: 700;
}


/*白色背景的头部*/


/*
.header.on{
	background: #fff;
	
}
.header.on .h_logo .img1{
	display: none;
}
.header.on .h_logo .img2{
	display: block;
}
.header.on .navbar_nav li a{
	color: #fff;
}
*/

#navToggle {
    display: none;
}

.m_nav {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    z-index: 10000000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}

.m_nav.open {
    transform: translateX(0);
}

.m_nav .top {
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}

.m_nav .top .closed {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    float: right;
    cursor: pointer;
}

.m_nav .logo {
    width: 100%;
    margin: 0 auto;
    background-color: #f1f1f1;
}

.m_nav .logo img {
    height: 65px;
    display: block;
    padding: 2%;
}

.m_nav .ul {
    width: 100%;
    display: block;
}

.m_nav .ul li {
    padding: 0 20px 0 20px;
    display: block;
    border-bottom: 1px solid #f5f5f5;
    transform: translateY(0);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}

.m_nav.open .ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li h3{
    display: flex;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: 100%;
}
.m_nav .ul li h3 a {
    flex: 1;
}
.m_nav .ul li h3 i{
    width: 20%;
    text-align: center;
}

.m_nav .ul li .dropdown_menu {
    display: none;
    background-color: #f5f5f5;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
    display: block;
}

.m_nav .ul li .dropdown_menu a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    font-size: 0.8em;
}

.m_nav .ul li .dropdown_menu a:last-child {
    border: none;
}


/* 移动端图标 */

.down_tu {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    background-color: rosybrown;
}

.jia {
    background: url(../images/jia.png) no-repeat center;
}

.jian {
    background: url(../images/jian.png) no-repeat center;
}


/*网站底部*/

.footer {
    overflow: hidden;
    padding: 70px 0;
}

.footer .footnavtop {
    width: 20%;
    float: left;
}

.footer .footnavsec {
    width: 30%;
    float: left;
}

.footer .footnav01 p {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.footer .footnav01 i {
    display: block;
    width: 30px;
    height: 1px;
    background: #ff393a;
    margin: 15px 0;
}

.fnurl a {
    font-size: 14px;
    line-height: 30px;
    color: #666;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fnurl02 a {
    font-size: 14px;
    line-height: 30px;
    color: #666;
    display: block;
    width: 50%;
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer a:hover{
    color: #ff393a;;
}

.ftlianxi {}

.ftlianxi span {
    display: block;
    font-size: 14px;
    line-height: 30px;
}

.footnav-erweima {
    width: 10%;
    float: right;
}

.footnav-erweima img {
    display: block;
    width: 100%;
}

.footnav-erweima p {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    text-align: center;
}

.foothei {
    background: #1e2343;
    line-height: 55px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.foothei .footleft {
    width: 50%;
    float: left;
}

.foothei .footright {
    width: 50%;
    float: right;
    text-align: right;
}

.foothei .footright a {
    color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1000px) {
    .footer .wrap>div:nth-child(-n+2) {
        display: none;
    }
    .footer .wrap>div:nth-child(3) {
        width: 75%;
    }
    .footer .wrap>div:nth-child(4) {
        width: 15%;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        display: none;
    }
    .foothei .footright a {
        display: none;
    }
    .foothei .footleft {
        width: 100%;
        text-align: center;
    }
    .protitle .title02 font {
        display: none;
    }
    .title {
        display: none;
    }
    .yuanquan {
        display: none;
    }
}


/* 移动端底部 */

.md_footer {
    height: 55px;
    display: none;
}

.md_footer_fixed {
    position: fixed;
    height: 55px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #1e2343;
    z-index: 9999;
}

.md_fixed_box {
    height: 100%;
    display: flex;
}

.md_fixed_box>a {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #d18e24;
    box-shadow: 1px 0px 0 #faa92b;
    color: #fff;
    font-size: 12px;
}

.md_fixed_box>a:last-child {
    border-right: 0;
}

@media screen and (max-width: 768px) {
    .md_footer {
        display: block;
    }
    .foothei {
        border-top: 3px solid #ff393a;
    }
}


/*网站底部end*/

@media screen and (max-width:1279px) and (min-width:767px) {
    .zz_dz {
        display: none;
    }
}


/*定制流程*/

.index-dingzhi {
    overflow: hidden;
    background: #efefef url("../images/jiantoubj.png") no-repeat center center;
    padding: 45px 0;
}

.dzmain .title {
    float: left;
    margin-top: 10px;
}

.dzmain .title i {
    font-size: 60px;
    text-transform: uppercase;
    color: #e1e1e1;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    z-index: 1;
}

.dzmain .title p {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 50px;
    margin-top: -30px;
}

.dzmain .title span {
    font-size: 14px;
    color: #666;
    line-height: 20px;
}

.yuanquan {
    float: left;
    overflow: hidden;
    margin-left: 20px;
}

.yuanquan li {
    display: block;
    float: left;
    width: 150px;
    height: 150px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.yuanquan li::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: rgba(42, 52, 82, 0.4);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 1;
}

.yuanquan li img {
    display: block;
    margin: 20px auto 0 auto;
}

.yuanquan li i {
    position: relative;
    font-size: 46px;
    color: #333;
    z-index: 5;
}

.yuanquan li p {
    position: relative;
    font-size: 18px;
    color: #333;
    line-height: 40px;
    display: block;
}

.dzlianxi {
    float: right;
}

.dztel {
    padding-left: 50px;
    background: url("../images/telll.png") no-repeat;
    margin-top: 20px;
}

.dztel p {
    font-size: 18px;
    font-weight: 700;
    color: #ff393a;
}

.dztel span {
    font-size: 17px;
    color: #333;
}

.dzlianxi a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    border-radius: 50px;
    background: #1e2343;
    margin-top: 20px;
}
.dzlianxi a:hover{
    background-color: #ff393a;
}

/* 手机版底部 */

.mbfoot {
    height: 0;
}

.mbfootdw {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: none;
    z-index: 10;
    background-color: #2a3452;
}

.mbfootdw .mbfootdw_item {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #0f1632;
    box-shadow: 1px 0px 0 #404b6f;
}

.mbfootdw .mbfootdw_item:last-child {
    border-right: none;
    box-shadow: none;
}

.mbfootdw_itemi i {
    font-size: 16px;
    color: #fff;
}

.mbfootdw_itemp {
    font-size: 12px;
    color: #fff;
}


/* top */

.mbfoot_top {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 57, 58, .8);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.mbfoot_top i {
    margin-top: -4px;
    font-size: 16px;
    color: #fff;
}

.mbfoot_topp {
    font-size: 12px;
    color: #fff;
}

@media screen and (max-width: 1000px) {
    .dzlianxi {
        width: 100%;
        float: left;
    }
    .yuanquan {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
    .yuanquan li {
        margin: 0 1%;
    }
    .dzmain .title {
        width: 100%;
        padding-left: 0;
    }
    .yuanquan li {
        width: 20%;
        height: 20%;
    }
}

@media screen and (max-width: 768px) {
    .dztel p {
        color: #333;
    }
    .dztel span {
        font-weight: 700;
    }
    .dztel {
        background: url("../images/telll.png") no-repeat 27%;
    }
    .index-dingzhi {
        background: none;
        background-color: #efefef;
    }
    .mbfoot_top {
        display: flex;
    }
}


/*定制流程end*/

@media screen and (max-width: 1360px) {
    .header {}
    .bonav a {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1260px) {
    .wrap {
        width: 90%;
    }
    .h_logo .wen {
        display: none;
    }
    .h_logo a p {
        border-right: none;
    }
    .h_logo {
        width: auto;
    }
    .h_logoright {
        width: 25%;
    }
    .header .navbar_nav li a {
        padding: 0 28px;
    }
}

@media screen and (max-width: 1100px) {
    .header .navbar_nav li a {
        padding: 0 22px;
    }
    .h_logoright {
        width: 30%;
    }
}

@media screen and (max-width: 992px) {
    .m_nav .ul li a {
        font-size: 1em;
    }
    .h_logo .wen p {
        font-size: 27px;
        padding-top: 3px;
    }
    .h_logoright {
        display: none;
    }
    .h_toubu {
        width: 5%;
        position: absolute;
        top: 8px;
        right: 0;
        background: none;
        box-shadow: none;
    }
    .h_logoright {
        width: 8%;
        margin-top: 32px;
    }
    .header01 {
        height: 90px;
    }
    .h_logo {
        width: 40%;
        margin-top: 18px;
    }
    .h_logo a p {
        font-size: 26px;
    }
    .h_logo a img {
        height: 52px;
    }
    .h_logoright a {
        width: 30px;
        height: 30px;
        background-size: 90%;
        padding: 0;
    }
    .h_logoright a span,
    .h_logoright a p {
        display: none;
    }
    .header #navToggle {
        height: 100%;
        padding: 9px 15px;
        margin-right: 15px;
        margin-top: 43px;
        display: inline-block;
        float: right;
    }
    .header #navToggle span {
        position: relative;
        width: 24px;
        height: 2px;
        margin-top: 19px;
    }
    .header #navToggle span:before,
    .header #navToggle span:after {
        content: '';
        position: relative;
        width: 100%;
        height: 2px;
        left: 0;
    }
    .header #navToggle span,
    .header #navToggle span:before,
    .header #navToggle span:after {
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        display: block;
        background: #333;
    }
    .header.on #navToggle span,
    .header.on #navToggle span:before,
    .header.on #navToggle span:after {
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        display: block;
        background: #111;
    }
    .header #navToggle span:before {
        top: 8px;
    }
    .header #navToggle span:after {
        bottom: 10px;
    }
    .header #navToggle.open span:before {
        top: 10px;
        -webkit-transform: translateY(-11px) rotate(-45deg);
        -moz-transform: translateY(-11px) rotate(-45deg);
        -ms-transform: translateY(-11px) rotate(-45deg);
        -o-transform: translateY(-11px) rotate(-45deg);
        transform: translateY(-11px) rotate(-45deg);
    }
    .header #navToggle.open span:after {
        bottom: 12px;
        -webkit-transform: translateY(10px) rotate(45deg);
        -moz-transform: translateY(10px) rotate(45deg);
        -ms-transform: translateY(10px) rotate(45deg);
        -o-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
    .header #navToggle.open span {
        background: none;
    }
    .header #navToggle.open span:before,
    .header #navToggle.open span:after {
        background: #4f4f4f;
    }
    .header .nav {
        display: none;
    }
    .footnav .navtit {
        display: none;
    }
    .bonav {
        width: 100%;
    }
    .foot {
        padding: 30px 0 0 0;
    }
    .footnav {
        display: none;
    }
    .bocontact {
        overflow: hidden;
        padding: 30px 0 25px;
    }
    .erweima {
        width: 50%;
    }
    .erimg {
        width: 30%;
    }
    .erimg img {
        width: 100%;
    }
    .contel {
        margin: 0 2%;
        width: 60%;
        text-align: right;
    }
    .contel a {
        text-align: left;
        right: -94px;
    }
    .coadd {
        margin: 25px 0;
    }
    .contel span {
        font-size: 24px;
    }
    .footlianxi {
        width: 80%;
    }
    .footerweima {
        width: 20%;
    }
    .foot02 {
        line-height: 22px;
        padding: 15px 0;
    }
}

@media screen and (max-width: 768px) {
    .hywen {
        width: 100%;
    }
    .hyliank {
        display: none;
    }
    .header01 {
        height: 90px;
    }
    .h_logo {
        margin-top: 17px;
        width: 60%;
    }
    .h_logoright {
        width: 10%;
        margin-top: 25px;
    }
    .index-dingzhi {
        padding: 30px 0 30px 0;
    }
    .dztel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }
}

@media screen and (max-width: 620px) {
    .h_logoright {
        width: 14%;
    }
}

@media screen and (max-width: 560px) {
    .header01 {
        height: 60px;
    }
    .h_logo {
        margin-top: 8px;
    }
    .h_logo a img {
        height: 40px;
    }
    .h_logo a p {
        font-size: 20px;
    }
    .h_logoright {
        width: 19%;
        margin-top: 14px;
    }
    .header #navToggle {
        margin-top: 30px;
        padding: 9px 15px;
        margin-right: 0;
    }
    .foot01 {
        padding: 30px 0;
        overflow: hidden;
    }
    .footlianxi .main {
        padding: 15px 0 0 0;
    }
    .footlianxi .main p {
        line-height: 24px;
    }
    .footlianxi .dizhi p {
        width: 83%;
        line-height: 24px;
    }
    .contactnr {
        width: 100%;
    }
    .h_logo .wen {
        display: none;
    }
    .h_toubu {
        width: 13%;
        position: absolute;
        top: 5px;
        right: 0;
    }
    .footlianxi {
        width: 100%;
    }
    .footerweima {
        width: 100%;
        margin-top: 25px;
    }
    .footerweima img {
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 1800px) {
    .hads_dh {
        margin-left: 0;
    }
}

@media screen and (max-width: 1600px) {
    .header .navbar_nav li a {
        padding: 20px 25px;
    }
    /* 定制流程 */
    .yuanquan li {
        width: 120px;
        height: 120px;
    }
    .yuanquan li::after {
        top: 12px;
        right: 25px;
    }
}

@media screen and (max-width: 1200px) {
    /* 定位流程 */
    .index-dingzhi {
        display: none;
    }
    .footer {
        padding-top: 0;
    }
}

@media screen and (max-width: 992px) {
    .h_logo {
        width: auto;
        height: 100%;
        margin-top: 0;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .mbfoot {
        height: 50px;
    }
    .mbfootdw {
        display: flex;
    }
}